home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr44 / xlib06p1.zip / XCBITM32.H < prev    next >
C/C++ Source or Header  |  1993-05-24  |  1KB  |  35 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XCBITM32 - header file
  4. ;
  5. ;   This module was written by Matthew MacKenzie
  6. ;   matm@eng.umd.edu
  7. ;
  8. ;
  9. ; ****** XLIB - Mode X graphics library                ****************
  10. ; ******                                               ****************
  11. ; ****** Written By Themie Gouthas                     ****************
  12. ;
  13. ; egg@dstos3.dsto.gov.au
  14. ; teg@bart.dsto.gov.au
  15. ;
  16. ;----------------------------------------------------------------------*/
  17. /* Notice that there is no function in this module to plot a
  18.    compiled bitmap.  Use x_put_cbitmap in module XCBITMAP. */
  19.  
  20. /* This module is only for 386+ class computers. */
  21.  
  22. #ifndef _XCBITM32_H_
  23. #define _XCBITM32_H_
  24.  
  25. extern int x_compile_bitmap_32 (      /* Compile a linear bitmap to generate  */
  26.               WORD logical_screen_width, /* machine code to plot it at any */
  27.               char far * bitmap,      /* required screen coordinates FAST. */
  28.               char far * output);
  29.  
  30. extern int x_sizeof_cbitmap_32 (        /* Find the size of the code which a  */
  31.               WORD logical_screen_width, /* bitmap would result in, if it  */
  32.               char far * bitmap);  /* were compiled (used for allocation). */
  33.  
  34. #endif
  35.